home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / pine3.92 / pine / osdep / creatdir.dos < prev    next >
Text File  |  1993-07-15  |  342b  |  16 lines

  1. /*----------------------------------------------------------------------
  2.       Create the mail subdirectory.
  3.  
  4.   Args: dir -- Name of the directory to create
  5.  
  6.  Result: Directory is created.  Returns 0 on success, else -1 on error
  7.      and errno is valid.
  8.   ----*/
  9. create_mail_dir(dir)
  10.     char *dir;
  11. {
  12.     return((mkdir(dir) < 0) ? -1 : 0);
  13. }
  14.  
  15.  
  16.